.footer {
  background-color: #27548A;
  color: white;
  padding: 2rem 2rem 1.5rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
  text-align: left;
}

/* Navigation links container */
.footer-nav-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2.5rem;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo .logo-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: white;
  object-fit: contain;
}

.footer-logo span {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  user-select: none;
}

.footer-address{
  font-size: 1.5rem !important;
  line-height: 1.4 !important;
  color: white !important;
  font-weight: 900 !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15) !important;
  letter-spacing: 0.5px !important;
  margin: 0 !important;
}

.footer-contact {
  margin-top: 1rem;
}

.footer-contact h4 {
  color: white;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-contact p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.3rem;
  font-weight: 400;
}

.footer-column h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
  position: relative;
  padding-bottom: 0.2rem;
  padding-left: 0.8rem;
  transition: all 0.3s ease;
}

.footer-column h3:hover {
  border-left-color: #60a5fa;
  padding-left: 1rem;
}

.footer-column h3 a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.footer-column h3 a:hover {
  color: #60a5fa;
}


.footer-copyright {
  margin-top: 1.5rem;
  padding-top: 0.8rem;
  border-top: 1.5px solid rgba(59, 130, 246, 0.3);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  user-select: none;
}

.footer-copyright a {
  color: #3b82f6;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-logo-section {
    order: 1;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-nav-section {
    order: 2;
    align-items: center;
    justify-content: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-address p {
    font-size: 16px ;
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
    text-align: center;
    border-left: none;
    padding-left: 0;
    padding-bottom: 0.5rem;
    display: inline-block;
  }
  
  .footer-column h3:hover {
    border-bottom-color: #60a5fa;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}